home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 November / PCWNOV07.iso / Software / Freeware / NSIS 2.29 / nsis-2.29-setup.exe / Examples / nsDialogs / InstallOptions.nsi < prev    next >
Encoding:
Text File  |  2007-07-14  |  429 b   |  29 lines

  1. !include LogicLib.nsh
  2. !include WinMessages.nsh
  3.  
  4. Name "nsDialogs IO"
  5. OutFile "nsDialogs IO.exe"
  6.  
  7. Page custom nsDialogsIO
  8. Page instfiles
  9.  
  10. XPStyle on
  11.  
  12. ShowInstDetails show
  13.  
  14. !include nsDialogs.nsh
  15.  
  16. Function nsDialogsIO
  17.  
  18.     InitPluginsDir
  19.     File /oname=$PLUGINSDIR\io.ini "${NSISDIR}\Examples\InstallOptions\test.ini"
  20.  
  21.     StrCpy $0 $PLUGINSDIR\io.ini
  22.  
  23.     Call CreateDialogFromINI
  24.  
  25. FunctionEnd
  26.  
  27. Section
  28. SectionEnd
  29.